home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN10.M4 < prev    next >
Text File  |  1996-04-01  |  4KB  |  147 lines

  1. name Fanuc 10M 4 Axis
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. g >2 G
  9. X ->3.>4
  10. Y ->3.>4
  11. Z ->3.>4
  12. A ->3.>3 Limit -180 180
  13. I ->3.>4
  14. J ->3.>4
  15. K ->3.>4
  16. Q ->3.>4
  17. R ->3.>4
  18. P ->3.>4
  19. F >3.2
  20. H >2
  21. D >2
  22. T >2
  23. M >2
  24. S >4
  25.  
  26. ModalLetters X Y Z F                  # List of letters that are modal    
  27.  
  28. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  29.  
  30. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  31. First#? N                             # Y or N  'Output 1st sequence no.  
  32. Last#? N                              # Y or N  'Output last sequence no. 
  33.  
  34. HCode X                               # X or X U  'Horizontal char.       
  35. VCode Y                               # Y or Y V  'Vertical char.         
  36. Dcode Z                               # Depth char.                       
  37. FeedCode F                            # Feed rate char.                   
  38.  
  39. Comment ( )                           # Begin End comment char.           
  40.  
  41. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  42. Coolant 8 9 7                         # On, Off & Mist m codes            
  43. DComp 41 42 40                        # Left, Right & Cancel m codes      
  44. LComp 43 49                           # On & Off codes                    
  45.  
  46. Feed G1                             # Linear move                       
  47. Rapid G0                            # Rapid positioning word            
  48. Cw G2                               # Circular move clockwise           
  49. Ccw G3                              # Circular move counter clockwise   
  50.  
  51. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  52.  
  53. CtrCode I J                           # I J or R or I J K L               
  54. Helical? Y
  55. Spaces? Y                             # Y or N  'Spaces between words     
  56.  
  57. Incremental? N                        # Y or N  'Inc or abs output        
  58. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  59. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  60.  
  61. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  62.  
  63.  
  64. Drill                                 # Drilling canned/manual cycle      
  65. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  66. end cancel
  67.  
  68. Peck                                  # Pecking canned/manual cycle       
  69. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  70. end cancel
  71.  
  72. Tap                                   # Tapping canned/manual cycle       
  73. G84 X[H] Y[V] Z[D] R[Vclear] F[Frate]
  74. end cancel
  75.  
  76. LTap                                  # Left handed tapping cycle         
  77. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  78. end cancel
  79.  
  80. Ream                                  # Reaming canned/manual cycle       
  81. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  82. end cancel
  83.  
  84. Bore                                  # Boring canned/manual cycle        
  85. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  86. end cancel
  87.  
  88. Back                                  # Back boring canned/manual cycle   
  89. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  90. end cancel
  91.  
  92. Cancel                                # Cancel a canned/manual cycle      
  93. G80
  94. end
  95.  
  96. Index X                               # Index the rotary table            
  97. G0 G28 g91 Z0
  98. G90 G0 G[Work] X[H] Y[V] A[RotAngle]
  99. G43 Z[D] H[Lcomp]
  100. End
  101.  
  102. UnWind                                # Unwind the rotary table           
  103. G0 G28 g91 Z0
  104. G90 G0 A0
  105. G43 Z[D] H[Lcomp]
  106. G0 X[LastH] Y[LastV] A[LastRotAng]
  107. G1 Z[LastD]
  108. End
  109.  
  110. StartCode                             # Start of the program              
  111. O[Program#]
  112. g91 G28 Z0
  113. G90
  114. End
  115.  
  116. 1stToolChange                         # First tool change                 
  117. /0 N[Block] T[Tool] M6
  118. G0 G40 G80 G[Work] X[H] Y[V] A[RotAngle]
  119. G43 Z[D] H[Lcomp] M[Direct] S[Speed]
  120. M[Cool] T[NextTool]
  121. End
  122.  
  123. Infeed                                # Enable cutter comp                
  124. G[Side] X[H] Y[V] D[DComp] F[Frate]
  125. end
  126.  
  127. Outfeed                               # Disable cutter comp               
  128. G1 G40 X[H] Y[V]
  129. Z[D]
  130. end
  131.  
  132. ToolChange                            # Secondary tool changes            
  133. M9
  134. G0 G28 g91 Z0
  135. N[Block] M6
  136. G0 G90 G[Work] X[H] Y[V] A[RotAngle]
  137. G43 Z[D] H[Lcomp] M[Direct] S[Speed]
  138. M[Cool] T[NextTool]
  139. End
  140.  
  141. EndCode                               # End of the program                
  142. G0 G28 g91 Z0
  143. G28 g91 X0 Y0 M6 A0
  144. G90
  145. M30
  146. End
  147.